home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 February / Chip_2004-02_cd1.bin / software / grab / grab.exe / {app} / WinGrab.exe / 0 / RCDATA / TFORM5 / TFORM5.txt
Text File  |  2001-10-17  |  3KB  |  108 lines

  1. object Form5: TForm5
  2.   Left = 297
  3.   Top = 235
  4.   Width = 458
  5.   Height = 218
  6.   HorzScrollBar.Tracking = True
  7.   ActiveControl = Memo
  8.   BorderIcons = [biSystemMenu, biMinimize]
  9.   Caption = 'Image text'
  10.   Font.Charset = DEFAULT_CHARSET
  11.   Font.Color = clWindowText
  12.   Font.Height = -11
  13.   Font.Name = 'MS Sans Serif'
  14.   Font.Style = []
  15.   FormStyle = fsStayOnTop
  16.   Menu = MainMenu1
  17.   OnClose = FormClose
  18.   OnCreate = FormCreate
  19.   OnDestroy = FormDestroy
  20.   PixelsPerInch = 96
  21.   TextHeight = 13
  22.   object Memo: TMemo
  23.     Left = 0
  24.     Top = 0
  25.     Width = 450
  26.     Height = 172
  27.     Align = alClient
  28.     Font.Charset = ANSI_CHARSET
  29.     Font.Color = clBlack
  30.     Font.Height = -13
  31.     Font.Name = 'MS Sans Serif'
  32.     Font.Style = []
  33.     MaxLength = 65000
  34.     ParentFont = False
  35.     ScrollBars = ssVertical
  36.     TabOrder = 0
  37.     WantTabs = True
  38.   end
  39.   object MainMenu1: TMainMenu
  40.     Left = 104
  41.     Top = 48
  42.     object File: TMenuItem
  43.       Caption = 'File'
  44.       ShortCut = 0
  45.       OnClick = FileClick
  46.       object ReadFromJPEG: TMenuItem
  47.         Caption = 'Read text from a JPEG file'
  48.         ShortCut = 0
  49.         OnClick = ReadFromJPEGClick
  50.       end
  51.       object WriteIntoJPEG: TMenuItem
  52.         Caption = 'Write text into a JPEG file'
  53.         ShortCut = 0
  54.         OnClick = WriteIntoJPEGClick
  55.       end
  56.       object N1: TMenuItem
  57.         Caption = '-'
  58.         ShortCut = 0
  59.       end
  60.       object OpenTextFile: TMenuItem
  61.         Caption = 'Open textfile'
  62.         ShortCut = 0
  63.         OnClick = OpenTextFileClick
  64.       end
  65.       object SaveTextFile: TMenuItem
  66.         Caption = 'Save textfile'
  67.         ShortCut = 0
  68.         OnClick = SaveTextFileClick
  69.       end
  70.       object N2: TMenuItem
  71.         Caption = '-'
  72.         ShortCut = 0
  73.       end
  74.       object Exit1: TMenuItem
  75.         Caption = 'Close'
  76.         ShortCut = 0
  77.         OnClick = Exit1Click
  78.       end
  79.     end
  80.     object Clear: TMenuItem
  81.       Caption = 'Clear'
  82.       ShortCut = 0
  83.       OnClick = ClearClick
  84.     end
  85.   end
  86.   object OpenDialog1: TOpenDialog
  87.     FileEditStyle = fsEdit
  88.     Filter = 
  89.       'JPEG files (*.JPG,*.JPEG,*.JFIF,*.JIF)|*.JPG; *.JPEG; *.JFIF; *.' +
  90.       'JIF|All files (*.*)|*.*'
  91.     Options = [ofHideReadOnly, ofPathMustExist, ofFileMustExist]
  92.     Title = 'Read text from a JPEG file:'
  93.     Left = 48
  94.     Top = 32
  95.   end
  96.   object SaveDialog1: TSaveDialog
  97.     DefaultExt = 'jpg'
  98.     FileEditStyle = fsEdit
  99.     Filter = 
  100.       'JPEG files (*.JPG, *.JPEG, *.JFIF, *.JIF)|*.JPG; *.JPEG; *.JFIF;' +
  101.       ' *.JIF|All files (*.*)|*.*'
  102.     Options = [ofHideReadOnly, ofPathMustExist, ofFileMustExist]
  103.     Title = 'Write text into a JPEG file:'
  104.     Left = 64
  105.     Top = 72
  106.   end
  107. end
  108.